home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
info-service
/
wais
/
ir-book-sources
/
mphf
/
rantab.h
< prev
next >
Wrap
C/C++ Source or Header
|
1993-04-08
|
682b
|
25 lines
/****************************** rantab.h **********************************
Purpose: External definitions for the three random number tables.
Provenance: Written and tested by Q. Chen and E. Fox, March 1991.
Edited and tested by S. Wartik, April 1991.
**/
#define NO_TABLES 3 /* Number of random number tables. */
#define ROWS 128 /* Rows of the random table (suitable for char). */
#define COLUMNS 150 /* Columns of the random table. */
typedef int randomTablesType[NO_TABLES][ROWS][COLUMNS]; /* random number table */
#ifdef __STDC__
extern void initialize_randomTable( randomTablesType tables, int *seed );
#else
extern void initialize_randomTable();
#endif